.hero {
  position: relative; /* IMPORTANT for button */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #ffffff;
  padding: 60px 8%;
  border-radius: 0 0 60px 60px;
}

.hero-content {
  max-width: 600px;
}

/* TAG */
.tagline {
  display: inline-block;
  background: #facc15;
  color: #111;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* TEXT */
.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero p {
  font-size: 18px;
  color: #cbd5e1;
  line-height: 1.7;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 26px;
  }
}

/* REFUND SECTION */
.refund {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

/* CONTAINER */
.refund-container {
  max-width: 800px;
  width: 100%;
}

/* HEADING */
.refund h2 {
  font-size: 34px;
  margin-bottom: 15px;
  text-align: left;
}

/* INTRO TEXT */
.refund .intro {
  color: #6b7280;
  margin-bottom: 25px;
  line-height: 1.8;
}

/* BOX STYLE */
.refund-box {
  background: #ffffff;
  padding: 20px 25px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

/* HOVER EFFECT */
.refund-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* SUB HEADINGS */
.refund-box h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

/* LIST */
.refund-box ul {
  margin-left: 18px;
}

.refund-box ul li {
  color: #6b7280;
  margin-bottom: 6px;
  line-height: 1.7;
}

/* GO HOME BUTTON */
.go-home-btn {
  position: absolute;
  top: 25px;
  left: 25px;
  background: #0ae8f0;
  color: #111;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 10;
}

.go-home-btn:hover {
  background: white;
  transform: translateY(-3px);
}
/* CTA */
.cta {
  text-align: center;
  padding-bottom: 80px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.whatsapp-btn {
  background: #25D366;
  color: white;
  padding: 15px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  gap: 10px;
}

.call-btn {
  background: #33b5e5;
  color: white;
  padding: 15px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  gap: 10px;
}
/* CTA SECTION */
.cta {
  text-align: center;
  background: #2563eb;
  color: white;
  border-radius: 40px;
  padding: 50px 20px;
  margin: 40px 8%;
}

.cta p {
  font-size: 18px;
  margin-bottom: 25px;
}